diff options
Diffstat (limited to 'src/app/article/all/[pageId]/page.tsx')
-rw-r--r-- | src/app/article/all/[pageId]/page.tsx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/app/article/all/[pageId]/page.tsx b/src/app/article/all/[pageId]/page.tsx index fd72772..0374401 100644 --- a/src/app/article/all/[pageId]/page.tsx +++ b/src/app/article/all/[pageId]/page.tsx @@ -149,9 +149,6 @@ export async function generateStaticParams() { return { pageId: `page-${index + 1}`, data: data }; }); } -// export const generateStaticParams = async () => { -// return [{ articleid: "123" }]; -// }; function chunk<T = any>(list: T[], len: number) { if (len <= 0) { |